home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-03 | 1.1 KB | 68 lines | [TEXT/PJMM] |
- { This file has been processed by The THINK Pascal Source Converter, v1.1. }
-
- {
- Created Tuesday, May 10 1989 at 6:00 AM
- CRMSerialDevices.p
- Pascal Interface to the Communications Resource Manager Serial Device Utilities
-
- Copyright Apple Computer, Inc. 1988-90
- All rights reserved
- }
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
-
- UNIT CRMSerialDevices;
- INTERFACE USES Types;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CONST
- { crmDeviceType}
- crmSerialDevice = 1;
-
- curCRMSerRecVers = 1;
-
-
- TYPE
- CRMIconHandle = ^CRMIconPtr;
- CRMIconPtr = ^CRMIconRecord;
- CRMIconRecord = RECORD
- oldIcon : ARRAY [0..31] OF LONGINT; { 'ICN#' data & mask }
- oldMask : ARRAY [0..31] OF LONGINT;
- theSuite : Handle; { IconSuite handle }
- reserved : LONGINT;
- END;
-
- CRMSerialPtr = ^CRMSerialRecord;
- CRMSerialRecord = RECORD
- version : INTEGER;
- inputDriverName : StringHandle;
- outputDriverName : StringHandle;
- name : StringHandle;
- deviceIcon : CRMIconHandle;
- ratedSpeed : LONGINT;
- maxSpeed : LONGINT;
- reserved : LONGINT;
- END;
-
- {UsingCRMSerialDevices}
-
-
- IMPLEMENTATION
- END.
-
-
-